footer {
    background: #ffffff;
    padding: 50px 0 20px;
    border-top: 1px solid #00a023;
    color: #334155;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr; /* Damos más espacio a la info de contacto */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Marca */
.footer-logo {
    height: 65px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.slogan {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 15px;
}

/* Links */
.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    text-decoration: none;
    color: #475569;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer-links a:hover { color: var(--primary); }

/* Contacto - EL CAMBIO IMPORTANTE */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item .icon {
    font-size: 1.1rem;
    background: #a0000055;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.sub-text {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    font-size: 0.85rem;
}

.dev-tagline {
    margin-top: 5px;
    color: #00a023;
    letter-spacing: 1px;
}

/* Ajuste Celular */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-item { justify-content: center; }
}

/* Contenedor de enlaces y web */
.social-links-container {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.web-link {
    color: #00a023;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.web-link:hover {
    color: #007a1b;
    text-decoration: underline;
}

/* Grilla de iconos */
.social-icons-grid {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon-btn:hover {
    transform: scale(1.2); /* El icono se agranda al pasar el mouse */
}

/* Centrado en móviles */
@media (max-width: 768px) {
    .social-links-container, .social-icons-grid {
        align-items: center;
        justify-content: center;
    }
}